home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 033a / callerup.zip / CALLERUP.DOC < prev    next >
Text File  |  1991-10-06  |  4KB  |  82 lines

  1.  
  2. PCBOARD is a registered trademark of Clark Development Company, Inc.
  3.  
  4. ╔═════════════════════════════════════════╦═══════════════════════════════════╗
  5. ║   FREE SOURCE CODE CONCEPT (FSCC)       ║  Tired of Shareware, Nagware, or  ║
  6. ╠═════════════════════════════════════════╣  Freeware with strings?  Join the ║
  7. ║   Don't have to mention authors name.  ║  FFSC arena!  It's not required,  ║
  8. ║   Released to Public Domain.           ║  but if you improve/add to this   ║
  9. ║   No strings attached.                 ║  code think about using the FSCC. ║
  10. ╚═══════════════╦═════════════════════════╩══════════════════╦════════════════╝
  11.                 ║  This code compliments of --->THE KID<---  ║
  12.                 ╚══════════╦════════════════════╦════════════╝
  13.                            ║ Alias Bill Shields ║
  14.                            ╚════════════════════╝
  15.  
  16. *:::::::::::::::::::::::::::[ DISCLAIMER ]:::::::::::::::::::::::::::::::::*
  17.  
  18. CALLERUP.EXE is provided AS IS without any warranty,  expressed or implied.
  19. This  includes  without  limitation  the  fitfulness  to  a particular
  20. purpose or application and any warranties of merchantability.  While I tried
  21. to be as thorough as  possible while  debugging CALLERUP.EXE, I shall  not  be
  22. liable for any damages, whether direct, indirect, special,  or  consequential
  23. arising  from a failure of CALLERUP.EXE to operate in a manner desired by the
  24. user. I shall  not be  liable for  any damage to data or property which may
  25. by caused directly or indirectly  by use of CALLERUP.EXE.
  26.  
  27. In no event will I be liable to you for any damages, including any lost
  28. profits, lost savings or  other incidental or consequential  damages arising
  29. out of your use or inability to use the program, or for any claim by any
  30. other party.
  31.  
  32. *::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*
  33.  
  34.  
  35. CALLERUP.EXE program  
  36. ====================  
  37. - Update the PCBOARDS CALLER(NODE) file from a command line.  You must have 
  38.   PCBOARD.DAT in the default directory (it gets your caller log pathname 
  39.   from it).  If you are running multiple nodes CALLERUP.EXE will read the
  40.   environment to see which node (caller log) it needs to update.
  41.  
  42. SYNTAX: CALLERUP string [/T] [/B] [/E]
  43.  
  44. switch     results
  45. ------     -------
  46.  /T        Will cause CALLER log entry "without" the date and time stamp.
  47.  /E        Places an asterisk line at the end of the text.
  48.  /B        Places an asterisk line at the beginning of the text.
  49.  
  50. Below is an example door using a password utility (enclosed in CALLERUP.ZIP 
  51. file).
  52.  
  53. ===================[ PASSWORD DOOR ]=======================
  54. passwrd okfine
  55. if errorlevel 0 if not errorlevel 1 goto correct
  56. if errorlevel 1 if not errorlevel 2 goto nogood
  57. :correct
  58. CALLERUP PASSWORD DOOR password was correct.
  59. goto end
  60. :nogood
  61. CALLERUP PASSWORD DOOR password was incorrect!
  62. :end
  63.  
  64.  
  65. It will generate the below log entry.....
  66.  
  67. **************************************************************
  68. 09-18-90 (07:13)  SYSOP (Local) (G) HILL AFB                  
  69.       Opened Door (DOS) at 07:13                              
  70. 09-18-90 (07:14)  PASSWORD DOOR password was correct.         
  71.       Back from DOS at 07:14                                  
  72.       Caller's Log Viewed                                     
  73.       Opened Door (DOS) at 07:14                              
  74. 09-18-90 (07:15)  PASSWORD DOOR password was incorrect!       
  75.       Back from DOS at 07:15                                  
  76.       Caller's Log Viewed                                     
  77.       Minutes Used: 2                                         
  78. 09-18-90 (07:15)  SYSOP Off Normally                          
  79. **************************************************************
  80.  
  81.  
  82.